home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / pcbmsg1.zip / PCBMSG.DOC < prev    next >
Text File  |  1991-10-21  |  4KB  |  84 lines

  1.  
  2. PCBOARD is a registered trademark of Clark Development Company, Inc.
  3.  
  4. *:::::::::::::::::::::::::::[ DISCLAIMER ]:::::::::::::::::::::::::::::::::*
  5.  
  6. PCBMSG.EXE by Bill Shields is released to public domain.
  7.  
  8. PCBMSG.EXE is provided AS IS without any warranty,  expressed or implied.
  9. This  includes  without  limitation  the  fitfulness  to  a particular
  10. purpose or application and any warranties of merchantability.  While I tried
  11. to be as thorough as  possible while  debugging PCBMSG.EXE, I shall  not  be
  12. liable for any damages, whether direct, indirect, special,  or  consequential
  13. arising  from a failure of PCBMSG.EXE to operate in a manner desired by the
  14. user. I shall  not be  liable for  any damage to data or property which may
  15. by caused directly or indirectly  by use of PCBMSG.EXE.
  16.  
  17. In no event will I be liable to you for any damages, including any lost
  18. profits, lost savings or  other incidental or consequential  damages arising
  19. out of your use or inability to use the program, or for any claim by any
  20. other party.
  21.  
  22. =========================[ BETA TEST VERSION ]==============================
  23. NOTE: If you have problems with this program please let me know on the
  24.       SALT AIR.  PD does not mean it's not supported.
  25. =========================[ BETA TEST VERSION ]==============================
  26.  
  27. MESSAGE ADD UTILITY FOR PCBOARD
  28. ===============================
  29.     Ver: 1.0
  30.   Usage: PCBMSG [/X:XX] [/X:XX] [...]
  31. Purpose: Update message base from DOS text file.
  32.  
  33. /D:filename .......... Filename with message text.
  34. /M:message subject ... Subject for message.
  35. /F:message from ...... Who message is from.
  36. /T:message to ........ Who message is to.
  37. /C:conference ........ Conference to place mail in.
  38. /S:Message status .... Message status (see note).
  39. /N ................... Multi-Node flag.
  40.  
  41. NOTE: No status will default to public message. Available status codes follow:
  42.  
  43.   * = Private message   ~ = Comment to SYSOP     
  44.  
  45. MSG ? will produce the above information.  Some things that should be noted
  46. about this program follow:
  47.  
  48. **  If your information after the switch (i.e. /T:info) contains more then
  49. one word then you will need to surround the entire string with quotes.  For 
  50. example PCBMSG /F:TEST.FIL "/T:BILL SHIELDS" /F:SYSOP ... ...  (this has to 
  51. do with the way DOS handles command line arguments).
  52.  
  53. **  In your message text file end your message with a carriage return or you 
  54. last line will not show up (I will correct this the next release).
  55.  
  56. **  I made a program called PCBSCMP which extracts specified data from 
  57. PCBOARD.SYS for the current user in a door (i.e. Full name) and sets the 
  58. environment with it.  You can use this program to specify who the message
  59. should be sent to.  Below I manually set the environment for the sake of 
  60. the demo so that you can see how this can be done.  PCBSCM3.ZIP can be found 
  61. on the SALT AIR BBS.
  62.  
  63. -----------------------------[ DEMO.BAT ]-----------------------------------
  64. echo off
  65. cls
  66.  
  67. set FN=BILL SHIELDS
  68. if !FN==! goto noenv
  69.  
  70. : Create private message to %FN% from SYSOP in conference 8
  71. pcbmsg /D:test.fil /M:ENVIRONMENT /F:SYSOP "/T:%FN%" /C:8 /S:* 
  72. :noenv
  73.  
  74. : Create private message to Bill Shields From SYSOP for Conference 8
  75. pcbmsg /D:test.fil /M:WORKS? /F:SYSOP "/T:BILL SHIELDS" /C:8 /S:* 
  76.  
  77. : Create public message from SYSOP to Bill shields conference 0
  78. pcbmsg /D:test.fil /M:DEFAULT /F:SYSOP "/T:BILL SHIELDS"  /S:P
  79.  
  80. : Create file to SYSOP from DOS conference 1
  81. pcbmsg /D:test.fil "/M:DOS COMMENT" /F:DOS /T:SYSOP /C:1 /S:~ 
  82. ---------------------------------[ EOF ]------------------------------------
  83.  
  84.